LEADTOOLS Medical (Leadtools.MedicalViewer assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.31
InvertSelection Method
See Also 
Leadtools.MedicalViewer Namespace > MedicalViewerCellCollection<MedicalViewerBaseCell> Class : InvertSelection Method



The InvertSelection Method is available as an add-on to the LEADTOOLS Medical Imaging toolkits.

Inverts (if a cell is selected make it unselected and vice versa) the selection of the cell in the MedicalViewer control.

Syntax

Visual Basic (Declaration) 
Public Sub InvertSelection() 
Visual Basic (Usage)Copy Code
Dim instance As MedicalViewerCellCollection(Of MedicalViewerBaseCell)
 
instance.InvertSelection()
C# 
public void InvertSelection()
C++/CLI 
public:
void InvertSelection(); 

Example

This example freezes the non selected cells.

Visual BasicCopy Code
Public Sub MedicalViewerCellCollectionInvertSelectionExample()
   Dim index As Integer
   Dim myForm As MedicalViewerForm = GetMedicalControl()
   Dim medicalViewer As MedicalViewer = myForm.Viewer

   medicalViewer.Cells.FreezeAll(False)
   For index = 0 To medicalViewer.Cells.Count - 1
      If (index Mod 2) = 0 Then
         medicalViewer.Cells(index).Selected = True
      End If
   Next index

   medicalViewer.Cells.InvertSelection()
   medicalViewer.Cells.FreezeSelected(True)
   myForm.ShowDialog()
End Sub
C#Copy Code
public void MedicalViewerCellCollectionInvertSelectionExample()
{
   int index;
   MedicalViewerForm myForm = GetMedicalControl();
   MedicalViewer medicalViewer = myForm.Viewer;

   medicalViewer.Cells.FreezeAll(false);
   for (index = 0; index < medicalViewer.Cells.Count; index++)
      if ((index % 2) == 0)
         medicalViewer.Cells[index].Selected = true;

   medicalViewer.Cells.InvertSelection();
   medicalViewer.Cells.FreezeSelected(true);
   myForm.ShowDialog();
}

Requirements

Target Platforms: Microsoft .NET Framework 2.0, Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7

See Also

Leadtools.MedicalViewer requires a Medical Imaging license and unlock key. For more information, refer to: Imaging Pro/Document/Medical Features